home *** CD-ROM | disk | FTP | other *** search
- /*
- * @(#)system.h 1.2 3/18/87
- */
- #ifndef system_h
- #define system_h
- #ifndef NULL
- #include <stdio.h>
- #endif
- #define Free(N) if ((int) (N) > 0x200) free((char *)(N));
-
- #define DONTTESTALLOC
- #ifdef DONTTESTALLOC
- extern char *malloc(/* nBytes */);
- /* unsigned int nBytes; */
-
- extern char *calloc(/* nElements, nBytes */);
- /* unsigned int nElement, nBytes; */
- #else
- extern int fmalloc(), fcalloc();
- #define malloc(N) ((char *) fmalloc(N))
- #define calloc(N, M) ((char *) fcalloc((N) * (M))
- #endif
-
- extern char *strcat(), *strcpy();
-
- extern int atoi();
- extern double atof();
-
- extern int exit(/* status */);
- /* int status; */
- #endif
-